home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BCI NET
/
BCI NET Dec 94.iso
/
archives
/
programming
/
c
/
gcc261ud-c.lha
/
gnu
/
ManualBrowser
/
GCC_Startup.s
< prev
next >
Wrap
Text File
|
1994-09-04
|
455b
|
26 lines
| Startup code.
| Doesn't do anything; your program is responsible for
| everything, including the workbench-message and opening
| dos.library.
|************************************************
.text
.globl _exit
movel 4:W,_SysBase
movel SP,StackPointer
jsr _Main
jra exit
_exit: movel SP@(4),d0
exit: movel StackPointer,SP
rts
|************************************************
.data
.globl _SysBase
.comm StackPointer,4
.comm _SysBase,4